home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
hardware
/
cpu115
/
makea.bat
< prev
next >
Wrap
DOS Batch File
|
1995-02-27
|
332b
|
14 lines
@echo off
echo makeA - CPU Identifier/Asm Builder Version 1.01 (c) 1994,95 by B-coolWare.
echo:
yesno Do you want to compile CPU Identifier
if errorlevel 1 goto compile
goto Done
:compile
echo Building CPU Identifier/Asm...
tasm /t/m/d__TINY__ cpu
tlink /t/x cpu
if exist *.obj del cpu.obj >nul
:Done
echo makeA done.